/* BOTÕES DO CARD DE LISTA */
.btn-deletar-lista {
    background: none;
    border: none;
    color: #ff4d4d;
    cursor: pointer;
    opacity: 0.6;
    transition: 0.3s;
    font-size: 1rem;
}
.btn-deletar-lista:hover {
    opacity: 1;
    transform: scale(1.1);
}
.btn-terminal {
    width: 100%;
    background: none;
    border: 1px solid #00ffcc;
    color: #00ffcc;
    padding: 10px;
    cursor: pointer;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    font-weight: bold;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.btn-terminal:hover {
    background: #00ffcc;
    color: #000;
    box-shadow: 0 0 15px #00ffcc;
}